home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part2 / 11855 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  739 b 

  1. Path: ix.netcom.com!news
  2. From: jlilley@ix.netcom.com (John Lilley)
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: For Experts: How to load a DLL dynamically ?
  5. Date: 16 Mar 1996 17:19:59 GMT
  6. Organization: Netcom
  7. Message-ID: <4iet7v$jdc@dfw-ixnews2.ix.netcom.com>
  8. References: <4ibr0a$8f9@nms.telepost.no> <4ieqki$dqv@cloner3.netcom.com>
  9. NNTP-Posting-Host: den-co12-24.ix.netcom.com
  10. Mime-Version: 1.0
  11. Content-Type: Text/Plain; charset=US-ASCII
  12. X-NETCOM-Date: Sat Mar 16 11:19:59 AM CST 1996
  13. X-Newsreader: WinVN 0.99.7
  14.  
  15. OOPS! Forgot something...
  16.  
  17.  
  18. This:
  19. >void DLLfoo::method1(/*args*/) { ... }
  20. >int DLLfoo::method2(/*args*/) { ... }
  21.  
  22. Should be:
  23. EXPORT void DLLfoo::method1(/*args*/) { ... }
  24. EXPORT int DLLfoo::method2(/*args*/) { ... }
  25.  
  26.  
  27. john lilley
  28.  
  29.